/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap'); */


@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');


/*////////////////////////////// 首頁 //////////////////////////////*/

html, body {
    overflow-x: hidden;
    /* font-family:Arial , 'Noto Sans TC', sans-serif ; */
    font-family: 'Josefin Sans','Noto Sans TC', sans-serif;
    font-weight: 300;
    height: 100%;
}

* {
    /* outline: 1px solid red; */
}

.wrapper {
    min-height: 70%;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    position: relative;
}



/* 頭 主選單 */
/* 20231016 */
.navbar {
    padding: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    align-items: stretch;
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 60;
    /* top: -100%; */

    transition: 0.2s;
}

.banner + .navbar {
    top: -100%;
}

.navbar.add {
    top: 0;
}

.navbar .container {
    padding: 0 15px;
}

/* LOGO */
.navbar .navbar-brand {
    max-width: 200px;
    padding: 10px 0;
}

    .navbar .navbar-brand img {
        width: 100%;
    }

/* menu按鈕 */
.navbar .navbar-toggler {
    background-image: url(../img/menu_btn.svg);
    width: 50px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 55;
}

    .navbar .navbar-toggler span {
        display: inline-block;
        width: 22px;
        height: 2px;
        border-radius: 10px;
        background-color: #fff;
        left: 14px;
        transition: 0.3s;
        transition-delay: 0.2s;
    }

    .navbar .navbar-toggler .line1 {
        position: absolute;
        top: 17px;
    }

    .navbar .navbar-toggler .line2 {
        position: absolute;
        top: 24px;
        width: 15px;
    }

    .navbar .navbar-toggler .line3 {
        position: absolute;
        bottom: 16px;
        width: 18px;
    }

    .navbar .navbar-toggler .line1.add {
        height: 2px;
        position: absolute;
        top: 24px;
        left: 13px;
        transform: rotate(45deg);
    }

    .navbar .navbar-toggler .line2.add {
        background-color: transparent;
    }

    .navbar .navbar-toggler .line3.add {
        height: 2px;
        position: absolute;
        bottom: 23px;
        left: 13px;
        width: 22px;
        transform: rotate(-45deg);
    }

/* menu選單 */
.navbar .navbar-collapse {
    justify-content: flex-end;
    height: 100%;
}

.navbar .navbar-nav {
    height: 100%;
    /* align-items: stretch; */
}

/* menu選單按鈕 */
.navbar .nav-link {
    display: flex;
    align-items: center;
    color: #3D3D3D;
    font-weight: 800;
    font-size: 0.9rem;
    height: 100%;
    transition: 0.3s;
    position: relative;
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding: 5px 27px 0 27px;
}

.dropdown-toggle:after {
    /* content: none; */
    position: absolute;
    right: 14px;
}

.navbar .nav-link:hover {
    background-color: #BD1933;
    color: #fff;
    /* font-weight: 800; */
    padding: 5px 14px 0px 40px;
}

    .navbar .nav-link:hover:before {
        content: "";
        width: 20px;
        height: 20px;
        background-color: #fff;
        border-radius: 50px;
        background-image: url(../img/arrow_r.svg);
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: 6px center;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar .nav-link:hover:after {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        border: 1px dashed #BD1933;
        border-radius: 50px;
        position: absolute;
        left: 11px;
        top: 50%;
        transform: translateY(-50%);
        animation: aa 10s infinite linear;
    }

.navbar .nav-link.dropdown-toggle:hover:after {
    left: 7px;
}

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.navbar .dropdown-menu {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
}

    .navbar .dropdown-menu .dropdown-item {
        background-color: #fff;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        padding: 20px 20px;
        padding-bottom: 18px;
        margin-top: 2px;
        transition: 0.2s;
    }

        .navbar .dropdown-menu .dropdown-item:hover {
            background-color: #BD1933;
            color: #fff;
        }

/* menu選單內次選單 */
.navbar .box {
    display: flex;
    align-items: center;
}

.navbar .sitemap {
    background-color: #365ABD;
    color: #fff;
    padding: 7px 10px;
    padding-bottom: 0;
    border-radius: 50px;
    margin-right: 5px;
    z-index: 55;
    transition: 0.3s;
}

    .navbar .sitemap a {
        display: inline-block;
        color: #fff;
        margin: 0;
        transform: translateY(-2px);
        font-weight: 400;
        font-size: 0.8rem;
    }

.navbar .home {
    background-color: #365ABD;
    padding: 8px 10px;
    border-radius: 50px;
    margin-right: 5px;
    margin-left: 5px;
    z-index: 55;
    transition: 0.3s;
}

    .navbar .home img {
        width: 12px;
    }

.navbar .login {
    background-color: #365ABD;
    color: #fff;
    padding: 7px 10px;
    padding-bottom: 0;
    border-radius: 50px;
    /* margin-right: 10px; */
    z-index: 55;
    transition: 0.3s;
}

    .navbar .login a {
        display: inline-block;
        color: #fff;
        margin: 0;
        transform: translateY(-2px);
        font-weight: 400;
        font-size: 0.8rem;
    }

    .navbar .home:hover, .navbar .login:hover, .navbar .sitemap:hover {
        background-color: #BD1933;
    }

.navbar .box div a:hover {
    text-decoration: none;
}


.navbar_bg {
    background-color: #3D3D3D;
    width: 100%;
    height: 100px;
}

@media (max-width: 1199.98px) {
    .navbar .navbar-nav {
        height: 80vh;
        overflow: auto;
    }

        .navbar .navbar-nav .nav-item.dropdown .nav-link {
            height: initial;
        }

        .navbar .navbar-nav .nav-item {
            order: 2;
        }

            .navbar .navbar-nav .nav-item.box {
                order: 1;
                justify-content: flex-end;
            }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-link:hover {
        padding: 20px 40px;
        padding-bottom: 15px;
        border-radius: 50px 50px 5px 50px;
    }

    .navbar .dropdown-menu .dropdown-item {
        box-shadow: none;
        border-bottom: 1px solid #F5F5F5;
        border-radius: 50px 50px 5px 50px;
    }

        .navbar .dropdown-menu .dropdown-item:hover {
            border-bottom: none;
        }
}





/* banner大圖 */
.banner {
    background-image: url(../img/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    padding-bottom: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
}

.banner .logo_box {
    position: absolute;
    width: 200px;
    top: 20px;
    transform: translateX(-50%);
}

    .banner .logo_box img {
        width: 100%;
    }

.banner .menu_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 0;
}

    .banner .menu_box a.acc_u {
        color: #fff;
        padding-right: 10px;
        font-size: 1.8rem;
        transform: translateY(-2px);
    }

        .banner .menu_box a.acc_u:hover {
            text-decoration: none;
        }

    .banner .menu_box .sitemap {
        background-color: #365ABD;
        color: #fff;
        padding: 3px 10px;
        border-radius: 50px;
        margin-right: 10px;
        z-index: 55;
        transition: 0.3s;
    }

        .banner .menu_box .sitemap a {
            display: inline-block;
            color: #fff;
            margin: 0;
            transform: translateY(1px);
            font-weight: 400;
        }

    .banner .menu_box .home {
        background-color: #365ABD;
        padding: 5px 10px;
        border-radius: 50px;
        margin-right: 10px;
        z-index: 55;
        transition: 0.3s;
    }

    .banner .menu_box .login {
        background-color: #365ABD;
        color: #fff;
        padding: 3px 10px;
        border-radius: 50px;
        margin-right: 10px;
        z-index: 55;
        transition: 0.3s;
    }

        .banner .menu_box .login a {
            display: inline-block;
            color: #fff;
            margin: 0;
            transform: translateY(1px);
            font-weight: 400;
        }

        .banner .menu_box .home:hover, .banner .menu_box .login:hover, .banner .menu_box .sitemap:hover {
            background-color: #BD1933;
        }

    .banner .menu_box div a:hover {
        text-decoration: none;
    }


/* menu按鈕 */
.banner .navbar-toggler {
    background-image: url(../img/menu_btn.svg);
    width: 50px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 55;
}

    .banner .navbar-toggler span {
        display: inline-block;
        width: 22px;
        height: 2px;
        border-radius: 10px;
        background-color: #fff;
        left: 14px;
        transition: 0.3s;
        transition-delay: 0.2s;
    }

    .banner .navbar-toggler .line1 {
        position: absolute;
        top: 17px;
    }

    .banner .navbar-toggler .line2 {
        position: absolute;
        top: 24px;
        width: 15px;
    }

    .banner .navbar-toggler .line3 {
        position: absolute;
        bottom: 16px;
        width: 18px;
    }

    .banner .navbar-toggler .line1.add {
        height: 2px;
        position: absolute;
        top: 24px;
        left: 13px;
        transform: rotate(45deg);
    }

    .banner .navbar-toggler .line2.add {
        background-color: transparent;
    }

    .banner .navbar-toggler .line3.add {
        height: 2px;
        position: absolute;
        bottom: 23px;
        left: 13px;
        width: 22px;
        transform: rotate(-45deg);
    }

/* menu 選單 */
.banner .navbar-collapse {
    position: absolute;
    background-color: rgba(61, 61, 61, 0.95);
    top: 0;
    right: -100%;
    height: 150vh;
    width: 40vw;
    z-index: 50;
    transition: 0.1s;
}

    .banner .navbar-collapse.show {
        right: 0;
    }

    .banner .navbar-collapse .menu {
        text-align: left;
        margin: 0px 30px;
        margin-top: 30%;
        height: 60vh;
        overflow: auto;
    }

        .banner .navbar-collapse .menu .nav-item .nav-link {
            display: inline-block;
            border: 2px solid #BD1933;
            border-radius: 50px 50px 10px 50px;
            color: #fff;
            padding: 7px 30px 5px 30px;
            margin: 15px 0;
            font-weight: 500;
            position: relative;
            transition: 0.3s;
        }

            .banner .navbar-collapse .menu .nav-item .nav-link:hover {
                background-color: #BD1933;
                padding: 7px 20px 5px 40px;
                font-weight: 700;
            }

                .banner .navbar-collapse .menu .nav-item .nav-link:hover:before {
                    content: "";
                    display: inline-block;
                    width: 25px;
                    height: 25px;
                    background-color: #fff;
                    border-radius: 50px;
                    background-image: url(../img/arrow_r.svg);
                    background-repeat: no-repeat;
                    background-position: center 10px;
                    background-size: 15px;
                    position: absolute;
                    left: 5px;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .banner .navbar-collapse .menu .nav-item .nav-link:hover:after {
                    content: "";
                    display: inline-block;
                    width: 21px;
                    height: 21px;
                    border: 1px dashed #BD1933;
                    border-radius: 50px;
                    position: absolute;
                    left: 7px;
                    top: 50%;
                    transform: translateY(-50%);
                    animation: aa 8s infinite linear;
                }

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}


/* banner 選單次選單 */
.banner .dropdown-toggle:after {
    top: 17px;
}

.banner .navbar-collapse .menu .nav-item.dropdown .nav-link:hover:after {
    left: 3px;
}

.banner .navbar-nav .dropdown-menu.show {
    position: relative !important;
    transform: initial !important;
    background-color: transparent;
    border: none;
}

    .banner .navbar-nav .dropdown-menu.show .dropdown-item {
        color: #fff;
        padding: 10px 30px;
        margin-bottom: 10px;
        transition: 0.3s;
    }

        .banner .navbar-nav .dropdown-menu.show .dropdown-item:hover {
            background-color: #BD1933;
            border-radius: 50px;
        }

        .banner .navbar-nav .dropdown-menu.show .dropdown-item:active {
            background-color: #BD1933;
            border-radius: 50px 50px 5px 50px;
        }



/* banner 中間內容 */
.banner .main_box {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20vh 0;
    height: 75%;
    position: relative;
}

    /* 標題 */
    .banner .main_box .title {
        max-width: 600px;
        margin: 10px auto;
    }

        .banner .main_box .title h1 {
            color: #fff;
            font-size: 4rem;
            font-weight: 1000;
            margin: 0;
        }

        .banner .main_box .title hr {
            margin: 0;
            margin-bottom: 15px;
            border-color: #fff;
        }

        .banner .main_box .title h2 {
            color: #fff;
            font-size: 2.4rem;
            margin: 0;
        }

    /* 連結 */
    .banner .main_box .link {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

        .banner .main_box .link a {
            display: inline-block;
            width: 25px;
            height: 25px;
            background-color: #fff;
            border-radius: 50px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 25px;
            margin: 20px 10px;
            color: transparent;
            overflow: hidden;
            transition: 0.3s;
        }

            .banner .main_box .link a.fb {
                background-image: url(../img/fb.svg);
            }

            .banner .main_box .link a.line {
                background-image: url(../img/line.svg);
            }

            .banner .main_box .link a.twitter {
                background-image: url(../img/twitter.svg);
            }

            .banner .main_box .link a.fb:hover {
                background-image: url(../img/fb_w.svg);
                background-color: #3D3D3D;
            }

            .banner .main_box .link a.line:hover {
                background-image: url(../img/line_w.svg);
                background-color: #3D3D3D;
            }

            .banner .main_box .link a.twitter:hover {
                background-image: url(../img/twitter_w.svg);
                background-color: #3D3D3D;
            }

    /* 按鈕 */
    .banner .main_box .btn_box button {
        min-width: 220px;
        padding-top: 8px;
        padding-bottom: 4px;
        border: none;
        border-radius: 50px 50px 10px 50px;
        background-color: #365ABD;
        color: #fff;
        font-weight: 500;
        margin: 20px 10px;
        transition: 0.3s;
    }

        .banner .main_box .btn_box button:hover {
            background-color: #BD1933;
            font-weight: 800;
        }

/* 下滑按鈕 */
.banner .btn_bottom {
    display: inline-block;
    background-color: #ffffffa0;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    ;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    transition: 0.3s;
}

    .banner .btn_bottom div {
        display: inline-block;
        background-color: #ffffffa0;
        width: 70px;
        height: 70px;
        border-radius: 50px;
        margin: -5px;
        position: absolute;
        left: 0;
        transform: scale(0.5);
        animation: bb 2s infinite linear;
    }

        .banner .btn_bottom div:nth-child(2) {
            animation: bb 2s 1s infinite linear;
        }

@keyframes bb {
    0% {
        transform: scale(0.3);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.banner .btn_bottom img {
    width: 6px;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-30%) translateY(50%);
}

.banner .btn_bottom:hover {
    background-color: #fff;
    width: 70px;
    height: 70px;
}

    .banner .btn_bottom:hover div {
        /* animation: none; */
        background-color: transparent;
    }

    .banner .btn_bottom:hover img {
        animation: cc 1s infinite;
    }

@keyframes cc {
    0% {
        transform: translateX(-30%) translateY(0%);
    }

    100% {
        transform: translateX(-30%) translateY(100%);
        opacity: 0;
    }
}





@media (max-width: 991.98px) {
    .banner .navbar-collapse {
        width: 100vw;
        height: 100vh;
    }

        .banner .navbar-collapse .menu {
            /* margin: 0 100px; */
            /* margin-top: 15%; */
            margin: 0 50px;
            margin-top: 30%;
            height: 50%;
            overflow: auto;
        }

    .banner {
        overflow: initial;
        height: initial;
    }

        .banner .menu_box {
            padding-top: 80px;
            padding-bottom: 10px;
        }

        .banner .main_box .title {
            padding: 0px 30px;
        }

            .banner .main_box .title h1 {
                font-size: 3rem;
            }

            .banner .main_box .title h2 {
                font-size: 1.8rem;
            }

        .banner .menu_box .home img {
            width: 15px;
        }

        .banner .menu_box .sitemap a {
            font-size: 0.9rem;
            transform: translateY(2px);
        }

        .banner .menu_box .login p {
            font-size: 0.9rem;
            transform: translateY(2px);
        }
}

@media (max-width: 767.98px) {
    .banner {
        overflow: initial;
        height: initial;
    }

        .banner .menu_box {
            padding-top: 80px;
            padding-bottom: 10px;
        }

        .banner .navbar-collapse .menu {
            margin: 0 50px;
            margin-top: 30%;
        }

        .banner .main_box .title {
            padding: 0px 30px;
        }

            .banner .main_box .title h1 {
                font-size: 3rem;
            }

            .banner .main_box .title h2 {
                font-size: 1.8rem;
            }
}




@media (max-width: 575.98px) {

    .banner .logo_box {
        left: 15px;
        transform: none;
    }

    .banner .navbar-collapse .menu {
        margin: 0 15px;
        margin-top: 40%;
    }

    .banner .main_box {
        padding: 12vh 0;
    }

        .banner .main_box .title {
            padding: 0px 20px;
        }

            .banner .main_box .title h1 {
                font-size: 11vw;
            }

            .banner .main_box .title h2 {
                font-size: 6.5vw;
            }

        .banner .main_box .btn_box button {
            margin-bottom: 0;
        }
}









/* facility 設施 */
/* 20231221 修改 */
.facility {
    background-color: #F5F5F5;
    /* padding: 60px 0; */

    position: relative;
    padding: 30px 0;
}

    /* 按鈕區塊 */
    /* 20231221 修改 */
    .facility .text_box {
        /* background-color: rgba(61, 61, 61, 0.95); */
        /* padding: 50px; */
        border-radius: 30px 30px 5px 30px;
        min-width: 500px;
        /* position: absolute; */
        /* top: 50%; */
        /* transform: translateY(-50%); */
        z-index: 55;
    }

    /* 標題 */
    .facility .title {
        display: flex;
        align-items: center;
    }

        .facility .title .img_box {
            width: 65px;
        }

            .facility .title .img_box img {
                width: 100%;
            }

        /* 20231221 修改 */
        .facility .title h2 {
            color: #3D3D3D;
            font-size: 1.5rem;
            border-bottom: 2px solid #BD1933;
            padding: 0 15px;
            margin: 0;
            transform: translateX(-3px);
        }

    /* 按鈕們 */
    /* 20231221 修改 */
    .facility .btn_box {
        list-style: none;
        /* padding-left: 60px; */
        /* transform: translateY(-5px); */

        display: flex;
        flex-wrap: wrap;
        margin: 0;
        padding: 10px 0;
    }

        /* 20231221 修改 */
        .facility .btn_box li {
            /* width: calc(100% / 5); */
            padding: 0 5px;
        }

        /* 20231221 修改 */
        .facility .btn_box button {
            display: inline-block;
            background-color: transparent;
            color: #3D3D3D;
            border: 1px solid #3D3D3D;
            border-radius: 50px 50px 10px 50px;
            padding: 3px 30px;
            padding-top: 5px;
            margin: 9px 0;
            font-size: 1.1rem;
            font-weight: 400;
            position: relative;
            transition: 0.3s;
        }

            /* 20231221 修改 */
            .facility .btn_box button.add {
                background-color: #BD1933;
                border-color: #BD1933;
                text-decoration: none;
                padding: 5px 18px 3px 42px;
                color: #fff;
            }

                .facility .btn_box button.add:before {
                    content: "";
                    display: inline-block;
                    width: 25px;
                    height: 25px;
                    border: 1px solid #fff;
                    border-radius: 50px;
                    background-image: url(../img/arrow_w.svg);
                    background-repeat: no-repeat;
                    background-position: center 9px;
                    background-size: 12px;
                    position: absolute;
                    left: 5px;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .facility .btn_box button.add:after {
                    content: "";
                    display: inline-block;
                    width: 21px;
                    height: 21px;
                    border: 1px dashed #fff;
                    border-radius: 50px;
                    position: absolute;
                    left: 7px;
                    top: 50%;
                    transform: translateY(-50%);
                }

            /* 20231221 修改 */
            .facility .btn_box button:hover {
                background-color: #BD1933;
                border-color: #BD1933;
                text-decoration: none;
                padding: 5px 18px 3px 42px;
                color: #fff;
            }

                .facility .btn_box button:hover:before {
                    content: "";
                    display: inline-block;
                    width: 25px;
                    height: 25px;
                    border: 1px solid #fff;
                    border-radius: 50px;
                    background-image: url(../img/arrow_w.svg);
                    background-repeat: no-repeat;
                    background-position: center 9px;
                    background-size: 12px;
                    position: absolute;
                    left: 5px;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .facility .btn_box button:hover:after {
                    content: "";
                    display: inline-block;
                    width: 21px;
                    height: 21px;
                    border: 1px dashed #fff;
                    border-radius: 50px;
                    position: absolute;
                    left: 7px;
                    top: 50%;
                    transform: translateY(-50%);
                    animation: aa 8s infinite linear;
                }

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}





/* 輪播 */

.facility .marquee .marquee_group {
    border-top: 3px solid #CCCCCC;
    border-bottom: 3px solid #CCCCCC;
    position: relative;
    display: none;
}

    .facility .marquee .marquee_group.show {
        display: block;
    }

    .facility .marquee .marquee_group:after {
        content: attr(data-attr);
        color: #fff;
        font-weight: 800;
        font-size: 3rem;
        position: absolute;
        bottom: -15px;
        right: 5px;
    }

    .facility .marquee .marquee_group .box {
        margin: 10px 7px;
        height: 400px;
        border-radius: 5px;
        overflow: hidden;
    }

        .facility .marquee .marquee_group .box img {
            display: inline-block;
            height: 100%;
        }


@media (max-width: 1199.98px) {

    .facility .text_box {
        min-width: initial;
    }

    /* 20231221 修改 */
    .facility .btn_box {
        /* padding: 0; */
        padding-top: 20px;
    }
}


@media (max-width: 991.98px) {

    /* 20231221 刪掉 */
    /* .facility{
        padding: 30px 0;
    }

    .facility .title h2{
        color: #3D3D3D;
    }

    .facility .text_box{
        position: initial;
        transform: translateY(0);   
        background-color: transparent;     
        padding: 0;
    }

    .facility .btn_box{
        display: flex;
        flex-wrap: wrap;
        margin: 0;
        padding: 10px 0;
    }

    .facility .btn_box li{
        width: calc(100% / 3);
        padding: 0 5px;
    }

    .facility .btn_box button{
        color: #3D3D3D;
        border-color: #3D3D3D;
        margin-right: 5px;
        width: 100%;
        padding:3px  0;
        padding-top: 5px;
    }

    .facility .btn_box button:hover{
        color: #fff;
        padding: 3px 0;
        padding-top: 5px;
        padding-left: 25px;
    }

    .facility .btn_box button.add{
        color: #fff;
    }

    .facility .marquee .marquee_group:after{
        font-size: 6vw;
        bottom: -15px;
    }

    .facility .marquee .marquee_group .box{
        height: 300px;
    } */

    /* 20231221 新增 */
    .facility .btn_box li {
        width: calc(100% / 3);
    }

    /* 20231221 新增 */
    .facility .btn_box button {
        width: 100%;
        padding: 3px 0;
        padding-top: 5px;
    }

    /* 20231221 新增 */
    .facility .marquee .marquee_group .box {
        height: 250px;
    }
}

@media (max-width: 767.98px) {

    .facility .title h2 {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .facility .title .img_box {
        width: 55px;
    }

    .facility .btn_box li {
        width: calc(100% / 2);
        padding: 0 5px;
    }
}

@media (max-width: 575.98px) {

    .facility .btn_box li {
        width: 100%;
        padding: 0 5px;
    }

    .facility .btn_box button {
        font-size: 0.9rem;
        margin: 5px 0;
        margin-right: 5px;
    }

    .facility .marquee .marquee_group:after {
        display: none;
    }

    .facility .marquee .marquee_group .box {
        height: 150px;
    }
}




/* room_type 房型 */
.room_type {
    background-color: #3D3D3D;
    padding: 60px 0;
}

    /* 標題 */
    .room_type .title {
        display: flex;
        align-items: center;
        padding-left: 50px;
    }

        .room_type .title .img_box {
            width: 65px;
            height: 65px;
            position: relative;
        }

            .room_type .title .img_box img {
                width: 65px;
                position: absolute;
                z-index: 5;
            }

        .room_type .title h2 {
            color: #fff;
            font-size: 1.5rem;
            border-bottom: 2px solid #BD1933;
            padding: 0 15px;
            margin: 0;
            transform: translateX(-3px);
        }

    /* 內容 */
    .room_type .carousel_box {
        display: flex;
        justify-content: space-between;
        margin: 0 5px;
    }

    /* 大圖 */
    .room_type .type_box .img_box {
        width: 680px;
        background-color: #fff;
        padding: 8px;
        border-radius: 20px;
        transform: translateY(-6px);
        height: 420px;
        overflow: hidden;
        border: 7px solid #fff;
        position: relative;
    }

        .room_type .type_box .img_box img {
            width: 100%;
            /* height: 100%; */
            /* border-radius: 10px; */
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(-50%) scale(1.2);
        }

    /* 文字框 */
    .room_type .type_box .text_box {
        transform: translateX(-30px) translateY(20px);
        order: 2;
    }

        /* 文字 */
        .room_type .type_box .text_box .text {
            background-color: #fff;
            border-radius: 30px 30px 10px 30px;
            width: calc(100% + 30px);
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .room_type .type_box .text_box h3 {
            font-size: 1.2rem;
            padding: 30px 40px 0 60px;
            margin: 0;
        }

        .room_type .type_box .text_box hr {
            margin: 5px 0;
            margin-right: 40px;
            border-color: #287BBC;
        }

        .room_type .type_box .text_box p {
            margin: 0;
            padding: 0px 40px 0 60px;
        }

        .room_type .type_box .text_box .btn_box {
            text-align: right;
        }

        .room_type .type_box .text_box button {
            color: #fff;
            background-color: #365ABD;
            border: none;
            border-radius: 50px 50px 5px 50px;
            padding: 3px 25px 0px 45px;
            margin: 20px 40px 30px 0;
            background-image: url(../img/arrow_w.svg);
            background-position: 10px 9px;
            background-repeat: no-repeat;
            background-size: 20px;
            transition: 0.3s;
        }

            .room_type .type_box .text_box button:hover {
                background-color: #BD1933;
                padding: 3px 45px 0px 25px;
                background-position: calc(100% - 10px) 9px;
                border-radius: 50px;
            }

    /* 小圖 */
    .room_type .type_box .img_small {
        list-style: none;
        padding: 0;
        display: flex;
        align-items: center;
        width: calc(100% + 30px);
    }

        .room_type .type_box .img_small li {
            width: calc(100% / 3);
            height: 140px;
            overflow: hidden;
            margin: 15px 0px;
            margin-left: 15px;
            border-radius: 10px;
            position: relative;
        }

            .room_type .type_box .img_small li img {
                display: block;
                width: 130%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translateX(-50%) translateY(-50%);
            }


    /* 輪播 */

    .room_type .type_box .slick-list {
        overflow: initial;
        overflow-x: clip;
    }

    .room_type .type_box .slick-dots {
        transform: translateY(15px);
        display: flex;
        justify-content: flex-end;
        padding-right: 75px;
    }

        .room_type .type_box .slick-dots li {
            width: 10px;
            height: 10px;
            margin: 0 7px;
        }

            .room_type .type_box .slick-dots li button:before {
                content: "";
                background-color: #3D3D3D;
                border: 1px solid #fff;
                border-radius: 50px;
                width: 10px;
                height: 10px;
                opacity: 1;
            }

            .room_type .type_box .slick-dots li.slick-active button:before {
                background-color: #fff;
                opacity: 1;
            }

    .room_type .type_box .slick-next {
        right: 5px;
        bottom: -70px;
        top: initial;
        background-color: #BD1933;
        width: 60px;
        height: 60px;
        border-radius: 50px;
        border: 1px solid #fff;
        z-index: 55;
        transition: 0.3s;
    }

        .room_type .type_box .slick-next:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .room_type .type_box .slick-next::before {
            content: "";
            display: inline-block;
            width: 50px;
            height: 50px;
            background-image: url(../img/arrow_w.svg);
            background-repeat: no-repeat;
            background-position: center 18px;
            background-size: 35px;
        }


        .room_type .type_box .slick-next:after {
            content: "";
            display: inline-block;
            width: 50px;
            height: 50px;
            border: 1px dashed #fff;
            border-radius: 50px;
            position: absolute;
            left: 4px;
            top: 50%;
            transform: translateY(-50%);
        }

        .room_type .type_box .slick-next:hover:after {
            animation: aa 8s infinite linear;
        }

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}


.room_type > hr {
    border: 1px solid #CCCCCC;
    margin: 0;
}




@media (max-width: 1199.98px) {

    .room_type .type_box .img_box {
        width: 500px;
    }

    .room_type .type_box .img_small {
        width: calc(100% + 260px);
        transform: translateX(-230px);
    }
}


@media (max-width: 991.98px) {

    .room_type {
        padding: 30px 0;
        padding-bottom: 10px;
    }

        .room_type .title {
            padding-left: 0;
        }

        .room_type .carousel_box {
            flex-direction: column;
        }

        .room_type .type_box .text_box {
            transform: translateY(0px);
        }

            .room_type .type_box .text_box .text {
                width: calc(100% - 50px);
                margin-left: 50px;
                min-height: initial;
                border-radius: 0 0 10px 30px;
                position: relative;
            }

                .room_type .type_box .text_box .text::before {
                    content: "";
                    display: inline-block;
                    width: 100%;
                    height: 51px;
                    background-color: #fff;
                    position: absolute;
                    top: -50px;
                    border-radius: 0 30px 0 0;
                }

        .room_type .type_box .img_box {
            width: 90%;
        }

        .room_type .type_box .img_small {
            width: calc(100% - 50px);
            transform: translateX(0px);
            margin-left: 50px;
        }

            .room_type .type_box .img_small li:nth-child(1) {
                margin-left: 0;
            }

        .room_type .type_box .slick-dots {
            transform: translateY(-12px);
        }

        .room_type .type_box .slick-next {
            bottom: -40px;
        }

        .room_type > hr {
            transform: translateY(-30px);
        }
}

@media (max-width: 767.98px) {

    .room_type .title h2 {
        font-size: 1.2rem;
        padding: 0 10px;
        transform: translateX(-5px);
    }

    .room_type .title .img_box {
        width: 55px;
    }

        .room_type .title .img_box img {
            width: 55px;
        }

    .room_type .type_box .text_box h3 {
        padding: 10px 20px 0 20px;
    }

    .room_type .type_box .text_box hr {
        margin-right: 20px;
    }

    .room_type .type_box .text_box p {
        padding: 0 20px;
    }

    .room_type .type_box .text_box button {
        margin: 20px 20px 30px 0;
    }

    .room_type .type_box .img_small li {
        height: 100px;
    }
}


@media (max-width: 575.98px) {

    .room_type .type_box .img_box {
        width: 95%;
    }

    .room_type .type_box .text_box .text {
        width: calc(100% - 25px);
        margin-left: 25px;
    }

    .room_type .type_box .img_small {
        width: calc(100% - 25px);
        margin-left: 25px;
    }

        .room_type .type_box .img_small li {
            height: 18vw;
        }
}




/* news 最新消息 */
.news {
    background-color: #F5F5F5;
    padding: 50px 0;
    padding-bottom: 0;
}

    /* 標題 */
    .news .title {
        display: flex;
        align-items: center;
        padding-left: 50px;
        transform: translateY(8px);
        position: relative;
        z-index: 55;
    }

        .news .title .img_box {
            width: 65px;
        }

            .news .title .img_box img {
                width: 100%;
            }

        .news .title h2 {
            font-size: 1.5rem;
            border-bottom: 2px solid #BD1933;
            padding: 0 15px;
            margin: 0;
            transform: translateX(-3px);
        }

    .news .list {
        list-style: none;
        padding: 30px 30px 50px 80px;
        margin: 0;
        background-color: #fff;
        border-radius: 10px 10px 0 0;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        position: relative;
    }

        .news .list::before {
            content: "";
            display: inline-block;
            width: 500px;
            height: 3px;
            background-color: #CCCCCC;
            position: absolute;
            /* left: -50px; */
            right: 100%;
            top: 55px;
        }

        .news .list::after {
            content: "";
            display: inline-block;
            width: 500px;
            height: 3px;
            background-color: #CCCCCC;
            position: absolute;
            left: 100%;
            bottom: 60px;
        }

        .news .list a {
            transition: 0.3s;
            padding-left: 20px;
            margin: 25px 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
        }

        .news .list p {
            display: inline-block;
            margin: 0;
            padding: 2px 5px;
            color: #3D3D3D;
            font-weight: 400;
            transition: 0.3s;
        }

            .news .list p.time {
                display: inline-block;
                border: 1px solid #3D3D3D;
                border-radius: 50px;
                padding: 0px 15px;
                padding-top: 2px;
                font-size: 0.9rem;
            }


        .news .list a:hover {
            text-decoration: none;
        }

            .news .list a:hover p {
                color: #365ABD;
                font-weight: 600;
            }

                .news .list a:hover p.time {
                    border: 1px solid #365ABD;
                }


            .news .list a:hover:before {
                content: "";
                display: inline-block;
                width: 25px;
                height: 25px;
                background-color: #BD1933;
                border-radius: 50px;
                background-image: url(../img/arrow_w.svg);
                background-repeat: no-repeat;
                background-position: center 9px;
                background-size: 15px;
                position: absolute;
                left: -15px;
                top: 50%;
                transform: translateY(-50%);
            }

            .news .list a:hover:after {
                content: "";
                display: inline-block;
                width: 21px;
                height: 21px;
                border: 1px dashed #fff;
                border-radius: 50px;
                position: absolute;
                left: -12px;
                top: 50%;
                transform: translateY(-50%);
                animation: aa 8s infinite linear;
            }

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.news .list .btn_box {
    text-align: center;
    margin-top: 40px;
}

.news .list button {
    background-color: #3D3D3D;
    border: none;
    border-radius: 50px 50px 10px 50px;
    color: #fff;
    padding: 7px 30px 3px 50px;
    /* padding-bottom: 3px; */

    position: relative;
    transition: 0.3s;
}


    .news .list button:before {
        content: "";
        display: inline-block;
        width: 25px;
        height: 25px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 50px;
        background-image: url(../img/arrow_w.svg);
        background-repeat: no-repeat;
        background-position: center 9px;
        background-size: 15px;
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.3s;
    }

    .news .list button:after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 1px dashed #fff;
        border-radius: 50px;
        position: absolute;
        left: 7px;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.3s;
    }

    .news .list button:hover {
        background-color: #365ABD;
        padding: 7px 50px 3px 30px;
        border-radius: 50px;
    }


        .news .list button:hover:before {
            left: calc( 100% - 30px);
        }

        .news .list button:hover:after {
            left: calc( 100% - 28px);
            animation: aa 8s infinite linear;
        }

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@media (max-width: 991.98px) {
    .news {
        padding-top: 20px;
    }

        .news .list {
            padding: 10px 30px 60px 40px;
        }

        .news .title {
            padding-left: 0;
        }

        .news .list .btn_box {
            margin-top: 30px;
        }
}

@media (max-width: 767.98px) {

    .news .title h2 {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .news .title .img_box {
        width: 55px;
    }
}


/* 回頂端 top */
.top {
    position: fixed;
    right: 50px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    background-color: #365ABD;
    border-radius: 50px;
    border: 1px solid #fff;
    z-index: 55;
    display: none;
    transition: 0.3s;
}

    .top.add {
        display: block;
    }

    .top button {
        width: 100%;
        height: 100%;
        background-color: transparent;
        border: none;
        color: #fff;
    }

        .top button::before {
            content: "";
            display: inline-block;
            width: 42px;
            height: 42px;
            border: 1px dashed #fff;
            border-radius: 50px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
        }

    .top:hover {
        background-color: #BD1933;
        transform: scale(1.1);
    }

        .top:hover button:before {
            animation: vv 8s infinite linear;
        }

@keyframes vv {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}


@media (max-width: 575.98px) {

    .top {
        position: fixed;
        right: 20px;
        bottom: 20px;
    }
}






/* 尾頁 */
footer {
    background: linear-gradient( to right, #BD1933 35vw, #3D3D3D 35vw );
    color: #fff;
    /* padding: 20px; */
}

    footer .container {
        background: linear-gradient( to right, #BD1933 16vw, #3D3D3D 16vw );
        display: flex;
        /* align-items: center; */
        justify-content: center;
    }


    footer .title {
        background-color: #BD1933;
        /* padding-left: 20px; */
        display: flex;
        align-items: center;
        max-width: 300px;
        justify-content: flex-end;
    }

        footer .title p {
            font-size: 2.5rem;
            font-weight: 600;
            margin: 0;
            position: relative;
        }

            footer .title p::after {
                content: "";
                display: inline-block;
                width: 20px;
                height: 7px;
                background-image: url(../img/arrow_w.svg);
                background-repeat: no-repeat;
                background-size: 20px;
                position: absolute;
                bottom: 15px;
                right: -8px;
            }

            footer .title p::before {
                content: "";
                display: inline-block;
                width: 90px;
                height: 1px;
                background-color: #fff;
                position: absolute;
                bottom: 16px;
                right: 12px;
            }

    footer .text_box {
        padding: 40px 60px;
    }

        footer .text_box p {
            margin: 0;
        }

        footer .text_box .text_bottom {
            margin-top: 20px;
            font-size: 0.9rem;
        }

    /* 連結 */
    footer .container .link {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

        footer .container .link a {
            display: inline-block;
            width: 25px;
            height: 25px;
            background-color: #fff;
            border-radius: 50px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 25px;
            margin: 20px 10px;
            color: transparent;
            overflow: hidden;
            transition: 0.3s;
        }

            footer .container .link a.fb {
                background-image: url(../img/fb.svg);
            }

            footer .container .link a.line {
                background-image: url(../img/line.svg);
            }

            footer .container .link a.twitter {
                background-image: url(../img/twitter.svg);
            }

            footer .container .link a.fb:hover {
                background-image: url(../img/fb_w.svg);
                background-color: #BD1933;
            }

            footer .container .link a.line:hover {
                background-image: url(../img/line_w.svg);
                background-color: #BD1933;
            }

            footer .container .link a.twitter:hover {
                background-image: url(../img/twitter_w.svg);
                background-color: #BD1933;
            }





@media (max-width: 1199.98px) {

    footer .title p {
        font-size: 2rem;
    }

    footer .text_box {
        padding: 40px;
    }
}

@media (max-width: 991.98px) {

    footer .container {
        flex-direction: column;
        background: linear-gradient( to right, #BD1933 15px, #3D3D3D 15px);
        padding: 20px 0;
        padding-left: 20px;
    }

    footer .title {
        background-color: transparent;
        max-width: initial;
        justify-content: flex-start;
        padding: 20px 0;
    }

    footer .text_box {
        padding: 20px 0;
        order: 3;
    }

    footer .container .link {
        justify-content: flex-start;
    }

        footer .container .link a {
            margin: 0 10px;
        }

            footer .container .link a:nth-child(1) {
                margin-left: 0;
            }
}


/* 內頁 */

/* breadcrumb 麵包屑 */
.breadcrumb_box {
    background-color: #3D3D3D;
}

    .breadcrumb_box .breadcrumb {
        background-color: transparent;
        margin: 0;
        padding: 0;
        padding-bottom: 20px;
    }

.breadcrumb-item + .breadcrumb-item::before {
    content: ">>";
    color: #fff;
    transform: translateY(-2px);
    font-weight: 300;
}

.breadcrumb_box .breadcrumb a {
    color: #fff;
    /* font-weight: 500; */
}

    .breadcrumb_box .breadcrumb a:hover {
        text-decoration: none;
    }

.breadcrumb_box .breadcrumb li.active {
    color: #fff;
    font-weight: 500;
}

/* 頁碼 */
.pagination {
    justify-content: center;
    margin: 20px 0;
    margin-top: 40px;
}

    .pagination .page-item .page-link {
        border-radius: 50px;
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0 3px;
        border: 1px solid #3D3D3D;
        text-align: center;
        line-height: 30px;
        color: #3D3D3D;
        font-weight: 500;
    }

        .pagination .page-item .page-link.active {
            background-color: #365ABD;
            color: #fff;
            border: 1px solid #365ABD;
        }

        .pagination .page-item .page-link:hover {
            background-color: #365ABD;
            color: #fff;
            border: 1px solid #365ABD;
        }

.page-item:first-child .page-link, .page-item:last-child .page-link {
    line-height: 28px;
    font-size: 0.8rem;
}


/* application_status 住宿申請資料查詢 */
.application_status {
    background-color: #F5F5F5;
}

    .application_status .main {
        background-color: #F5F5F5;
        padding-top: 0;
        /* padding-bottom: 150px; */
        position: relative;
    }

        .application_status .main::before {
            content: "";
            display: inline-block;
            width: 100%;
            height: 100px;
            background-color: #3D3D3D;
            position: absolute;
        }

        .application_status .main::after {
            content: attr(data-attr);
            display: inline-block;
            color: #3D3D3D;
            font-weight: 800;
            font-size: 2.8rem;
            text-transform: uppercase;
            letter-spacing: -2;
            white-space: nowrap;
            position: absolute;
            bottom: -23px;
            right: -5px;
        }

        .application_status .main .box {
            background-color: #fff;
            padding: 20px;
            max-width: 550px;
            margin: 30px auto;
            border-radius: 10px 10px 0 0;
            margin-bottom: 0;
            padding-bottom: 120px;
            position: relative;
        }

            .application_status .main .box::before {
                content: "";
                display: inline-block;
                width: 1000px;
                height: 3px;
                background-color: #CCCCCC;
                position: absolute;
                right: 100%;
                top: 55px;
            }

            .application_status .main .box::after {
                content: "";
                display: inline-block;
                width: 1000px;
                height: 3px;
                background-color: #CCCCCC;
                position: absolute;
                left: 100%;
                bottom: 60px;
            }

            /* 標題 */
            .application_status .main .box .title {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 40px;
                margin-bottom: 20px;
            }

                .application_status .main .box .title h1 {
                    margin: 0;
                    margin-left: 10px;
                    font-size: 1.8rem;
                    transform: translateY(2px);
                    letter-spacing: -1;
                }

            /* 文字內容 */
            .application_status .main .box .text {
                margin: 40px;
            }

                .application_status .main .box .text p {
                    margin: 0;
                    text-align: justify;
                    margin-bottom: 30px;
                }

            /* 驗證碼 */
            .application_status .main .box .captcha {
                /* text-align: center; */
                margin: 10px auto;
                max-width: 250px;
            }

                .application_status .main .box .captcha img {
                    width: 100%;
                }

            /* 按鈕 */
            .application_status .main .box .btn_box {
                text-align: center;
                margin: 20px 0;
                margin-top: 30px;
            }

                .application_status .main .box .btn_box button {
                    background-color: #3D3D3D;
                    color: #fff;
                    border: none;
                    border-radius: 50px 50px 5px 50px;
                    padding: 3px 50px;
                    padding-top: 6px;
                    transition: 0.3s;
                }

                    .application_status .main .box .btn_box button:hover {
                        background-color: #BD1933;
                    }

        /* 表單項目 */
        .application_status .main .input_box {
            margin: 30px 0;
            display: flex;
            align-items: center;
        }

        .application_status .main label {
            /* flex-grow: 1; */
            flex-basis: 100px;
            margin: 0;
            font-weight: 400;
            font-size: 1.1rem;
        }

            .application_status .main label span {
                display: inline-block;
                color: #BD1933;
                margin-left: 5px;
                transform: scale(1.3);
            }

        .application_status .main .input_box input {
            flex-grow: 1;
            width: 100%;
            border: 1px solid #F5F5F5;
            box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.1);
            padding: 8px 5px;
            border-radius: 5px;
        }

            .application_status .main .input_box input::placeholder {
                color: #ccc;
            }


@media (max-width: 767.98px) {
    .application_status .main::after {
        font-size: 2.5rem;
    }
}


@media (max-width: 575.98px) {
    .application_status .main {
        /* padding-bottom: 60px; */
    }

        .application_status .main .box .title {
            margin-top: 20px;
        }

            .application_status .main .box .title h1 {
                font-size: 1.2rem;
            }

        .application_status .main .box .text {
            margin: 30px 10px;
        }

        .application_status .main .input_box label {
            font-size: 1rem;
        }
}






/* form 住宿申請表單 */
.form .main {
    padding-bottom: 0px;
    position: relative;
}

    .form .main .box {
        max-width: 900px;
        margin-bottom: 0;
        border-radius: 10px 10px 0 0;
        padding-bottom: 60px;
    }

        .form .main .box::after {
            bottom: 95px;
        }

        .form .main .box .title {
            justify-content: flex-start;
            /* padding-left: 40px; */
            margin-left: 40px;
            margin-right: 40px;
        }

            .form .main .box .title h1 {
                border-bottom: 1px solid #BD1933;
            }

        .form .main .box .text {
            margin-top: 0;
        }

            /* 文字 */
            .form .main .box .text p {
                margin: 0;
                padding: 0 5px;
                font-weight: 400;
                font-size: 1.1rem;
                text-align: justify;
            }

                .form .main .box .text p span {
                    font-weight: 600;
                    font-size: 1.2rem;
                }

            /* 表格 */
            .form .main .box .text table {
                margin: 10px 0;
            }

            .form .main .box .text tr th {
                padding: 10px;
                border: 1px solid #ccc;
            }

            .form .main .box .text tr td {
                padding: 10px;
                border: 1px solid #ccc;
            }

            .form .main .box .text span.required {
                display: inline-block;
                color: #BD1933;
                margin: 0 2px;
                transform: scale(1.3);
            }

        /*  */
        .form .main .box .time_box {
            /* display: flex; */
        }

            .form .main .box .time_box p:nth-last-child(1) {
                /* width: 200px; */
                margin-bottom: 10px;
                font-weight: 600;
                font-size: 1.2rem;
                color: #365ABD;
            }

        /* 分隔線 */
        .form .main .box .text hr {
            border-color: #365ABD;
            border-width: 2px;
            width: 40px;
            margin: 20px 0;
        }

    .form .main .yes_box {
        display: none;
    }

    /* 按鈕 */
    .form .main .box .btn_box {
        margin-top: 60px;
    }

    /* 選單項目 */
    .form .main .input_box {
        flex-direction: column;
        align-items: flex-start;
        max-width: 350px;
        margin: 20px 0;
        padding: 0 5px;
    }

        .form .main .input_box label {
            flex-basis: initial;
        }

        .form .main .input_box input[readonly] {
            background-color: #F5F5F5;
        }

            .form .main .input_box input[readonly]::placeholder {
                color: #9d9d9d;
            }

    .form .main .form-group {
        max-width: 350px;
    }

        .form .main .form-group .form-control option {
            padding: 10px;
        }

    /* 單選 */
    .form .main .radio_box {
        /* display: flex; */
        align-items: center;
        flex-wrap: wrap;
        padding: 0 5px;
    }

        .form .main .radio_box label {
            flex-basis: initial;
            margin-right: 20px;
        }

        .form .main .radio_box .radio {
            display: flex;
            margin: 10px 0;
        }

            .form .main .radio_box .radio .form-check {
                margin-right: 10px;
            }

    /* 上傳大頭照 */
    .form .main .file_box .custom_file {
        display: inline-block;
        width: 200px;
        height: 200px;
        background-image: url(../img/picture_img.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 150px;
        box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.1);
        border: 1px solid #F5F5F5;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

        .form .main .file_box .custom_file input {
            width: 200px;
            height: 200px;
            opacity: 0;
            cursor: pointer;
        }

    .form .main .file_box .upload {
        display: inline-block;
        background-color: #365ABD;
        color: #fff;
        border-radius: 8px;
        padding: 3px 15px;
        padding-top: 6px;
        width: 85%;
        text-align: center;
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        transition: 0.3s;
        pointer-events: none;
    }

    .form .main .file_box .custom_file:hover .upload {
        background-color: #BD1933;
    }

    .form .main .file_box #preview_progressbarTW_img {
        position: absolute;
        width: 200px;
        left: 0;
        top: 0;
        opacity: 0;
        pointer-events: none;
    }

    .form .main .file_box .custom_file + p {
        font-size: 0.9rem;
        max-width: 200px;
        color: #9d9d9d;
        padding: 5px;
        ;
    }

    /* 付款方式 */
    .form .main .payment_box div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .form .main .payment_box button {
        background-color: transparent;
        color: #3D3D3D;
        border: 1px solid #3D3D3D;
        border-radius: 50px 50px 5px 50px;
        padding: 3px 40px;
        padding-top: 6px;
        margin: 5px 0;
        transition: 0.3s;
    }

        .form .main .payment_box button:hover {
            background-color: #F5F5F5;
            /* color: #fff; */
            border-radius: 50px;
        }

        .form .main .payment_box button.add {
            background-color: #365ABD;
            color: #fff;
            border-radius: 50px;
        }



@media (max-width: 575.98px) {
    .form .main .box .title {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 20px;
    }

    .form .main .payment_box button {
        font-size: 0.9rem;
        letter-spacing: -0.8;
        padding: 3px 20px;
        padding-top: 6px;
    }
}



/* order 訂單 住宿申請紀錄 */
.order .main .box {
    max-width: 900px;
}

    /* 標題 */
    .order .main .box .title {
        justify-content: flex-start;
        margin-left: 40px;
        margin-right: 40px;
    }

        .order .main .box .title h1 {
            border-bottom: 1px solid #BD1933;
        }

    /* 列表 */
    .order .main .box .list {
        padding: 0;
        margin: 40px;
        list-style: none;
    }

        .order .main .box .list > li {
            box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid #F5F5F5;
            padding: 20px 40px;
            padding-top: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        /* 列表標題 */
        .order .main .box .list .title {
            display: block;
            margin: 0;
            padding: 0;
            margin-bottom: 3px;
            overflow: hidden;
        }

            .order .main .box .list .title h2 {
                display: inline-block;
                font-size: 1.1rem;
                margin: 0;
                transform: translateY(7px);
                padding-bottom: 7px;
            }

            .order .main .box .list .title div {
                background-color: #BD1933;
                color: #fff;
                padding: 5px 0px;
                padding-bottom: 2px;
                width: 120px;
                text-align: center;
                border-radius: 50px 50px 10px 50px;
                float: right;
            }

        .order .main .box .list hr {
            border-color: #365ABD;
            margin: 0px;
        }

        /* 個人資料 房型資料 */
        .order .main .box .list .information {
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            border-bottom: 1px solid #365ABD;
        }

        .order .main .box .list .room {
            border-bottom: none;
        }

        .order .main .box .list .information li {
            display: flex;
            width: 50%;
            justify-content: space-between;
            align-items: center;
            padding: 10px 10px;
            font-weight: 400;
            border-top: 1px solid #CCCCCC;
        }

            .order .main .box .list .information li p {
                margin: 0;
            }

            .order .main .box .list .information li.pay_box p:nth-last-child(1) {
                color: #BD1933;
                font-weight: 600;
                font-size: 1.1rem;
            }

            .order .main .box .list .information li.payment {
                width: 100%;
                border-top: none;
                justify-content: flex-end;
                padding-right: 0;
                padding-top: 0;
            }

                /* 付款按鈕 */
                .order .main .box .list .information li.payment button {
                    background-color: #365ABD;
                    color: #fff;
                    border: none;
                    border-radius: 50px 50px 10px 50px;
                    width: 120px;
                    padding-top: 5px;
                    padding-bottom: 2px;
                    padding-left: 20px;
                    position: relative;
                    transition: 0.3s;
                }

                    .order .main .box .list .information li.payment button::before {
                        content: "";
                        display: inline-block;
                        width: 23px;
                        height: 23px;
                        border: 1px solid #fff;
                        border-radius: 50px;
                        background-image: url(../img/arrow_w.svg);
                        background-repeat: no-repeat;
                        background-position: center 8px;
                        background-size: 12px;
                        position: absolute;
                        left: 5px;
                        top: 50%;
                        transform: translateY(-50%);
                        transition: 0.3s;
                    }

                    .order .main .box .list .information li.payment button:after {
                        content: "";
                        display: inline-block;
                        width: 18px;
                        height: 18px;
                        border: 1px dashed #fff;
                        border-radius: 50px;
                        position: absolute;
                        left: 7px;
                        top: 50%;
                        transform: translateY(-50%);
                        transition: 0.3s;
                    }

                    .order .main .box .list .information li.payment button:hover:before {
                        left: calc( 100% - 28px);
                    }

                    .order .main .box .list .information li.payment button:hover:after {
                        left: calc( 100% - 25px);
                    }

                    .order .main .box .list .information li.payment button:hover {
                        padding-left: 0px;
                    }

        .order .main .box .list .title .reserve {
            background-color: #365ABD;
        }

        .order .main .box .list .title .none {
            background-color: #3D3D3D;
        }

        .order .main .box .list .information li.btn {
            flex-wrap: wrap;
        }

            .order .main .box .list .information li.btn button {
                width: initial;
                padding: 5px 20px 2px 40px;
                margin-left: 10px;
                margin-bottom: 5px;
            }

                .order .main .box .list .information li.btn button:hover {
                    padding: 5px 40px 2px 20px;
                }


@media (max-width: 991.98px) {
    .order .main .box .list > li {
        padding: 20px;
        padding-top: 30px;
    }

    .order .main .box .list .information li {
        width: 100%;
    }

    .order .main .box .list li.space {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .order .main .box .title {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 20px;
    }

    .order .main .box .list {
        margin: 10px;
    }

        .order .main .box .list .information li {
            flex-direction: column;
            align-items: flex-start;
        }

            .order .main .box .list .information li p:nth-last-child(1) {
                text-align: right;
                width: 100%;
            }

        .order .main .box .list .room li.payment {
            text-align: right;
            display: block;
            padding: 0;
        }
}


/* list 列表頁 最新消息 */
.wrapper.list .main .box {
    max-width: 1200px;
    padding-bottom: 50px;
}

    /* 標題 */
    .wrapper.list .main .box .title {
        justify-content: flex-start;
        padding: 0 40px;
    }

        .wrapper.list .main .box .title h1 {
            border-bottom: 1px solid #BD1933;
        }

    /* 列表 */
    .wrapper.list .main .box .list {
        padding: 0;
        margin: 0;
        list-style: none;
        padding: 0 20px;
    }

        .wrapper.list .main .box .list a {
            transition: 0.3s;
            padding-left: 20px;
            margin: 35px 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
        }

        .wrapper.list .main .box .list p {
            display: inline-block;
            margin: 0;
            padding: 2px 5px;
            color: #3D3D3D;
            font-weight: 400;
            transition: 0.3s;
        }

            .wrapper.list .main .box .list p.time {
                display: inline-block;
                border: 1px solid #3D3D3D;
                border-radius: 50px;
                padding: 0px 15px;
                padding-top: 2px;
                font-size: 0.9rem;
            }


        .wrapper.list .main .box .list a:hover {
            text-decoration: none;
        }

            .wrapper.list .main .box .list a:hover p {
                color: #365ABD;
                font-weight: 600;
            }

                .wrapper.list .main .box .list a:hover p.time {
                    border: 1px solid #365ABD;
                }


            .wrapper.list .main .box .list a:hover:before {
                content: "";
                display: inline-block;
                width: 25px;
                height: 25px;
                background-color: #BD1933;
                border-radius: 50px;
                background-image: url(../img/arrow_w.svg);
                background-repeat: no-repeat;
                background-position: center 9px;
                background-size: 15px;
                position: absolute;
                left: -15px;
                top: 50%;
                transform: translateY(-50%);
            }

            .wrapper.list .main .box .list a:hover:after {
                content: "";
                display: inline-block;
                width: 21px;
                height: 21px;
                border: 1px dashed #fff;
                border-radius: 50px;
                position: absolute;
                left: -12px;
                top: 50%;
                transform: translateY(-50%);
                animation: aa 8s infinite linear;
            }

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}


@media (max-width: 575.98px) {
    .wrapper.list .main .box .list {
        padding: 0 10px;
    }

    .wrapper.list .main .box .title {
        padding: 0 30px;
    }
}



/* 列表頁 內頁 list_main */
.list_main .main::after {
    content: none;
}

/* 標題 */
.list_main .main .box .title {
    margin-bottom: 5px;
}

/* 時間 連結 */
.list_main .main .box .link_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
}

    .list_main .main .box .link_box .time {
        margin: 0;
        padding-top: 3px;
        padding-right: 6px;
        font-weight: 400;
    }

    /* 連結 */
    .list_main .main .box .link_box .link {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

        .list_main .main .box .link_box .link a {
            display: inline-block;
            width: 25px;
            height: 25px;
            background-color: #3D3D3D;
            border-radius: 50px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 22px;
            margin: 0px 3px;
            color: transparent;
            overflow: hidden;
            transition: 0.3s;
        }

            .list_main .main .box .link_box .link a.fb {
                background-image: url(../img/fb_w.svg);
            }

            .list_main .main .box .link_box .link a.line {
                background-image: url(../img/line_w.svg);
            }

            .list_main .main .box .link_box .link a.twitter {
                background-image: url(../img/twitter_w.svg);
            }

            .list_main .main .box .link_box .link a:hover {
                background-color: #BD1933;
            }

/* 輪播 */
.list_main .main .box .carousel {
    margin: 20px -20px;
}

    .list_main .main .box .carousel .img_box {
        margin: 0 20px;
        border-radius: 10px;
        overflow: hidden;
    }

    .list_main .main .box .carousel img {
        height: 350px;
    }

    .list_main .main .box .carousel .slick-dots {
        transform: translateY(-20px);
    }

        .list_main .main .box .carousel .slick-dots li {
            width: 15px;
            height: 15px;
        }

            .list_main .main .box .carousel .slick-dots li button {
                width: 15px;
                height: 15px;
            }

                .list_main .main .box .carousel .slick-dots li button::before {
                    width: 15px;
                    height: 15px;
                }

/* 文字內容 */
.list_main .main .box .text {
    font-weight: 400;
    font-size: 1.1rem;
}

.list_main .main .box hr {
    border-color: #365ABD;
    border-width: 2px;
    width: 40px;
    margin: 20px 40px;
}

/* 下載 */
.list_main .main .box .download {
    margin: 40px;
}

    .list_main .main .box .download h2 {
        font-size: 1.5rem;
    }

    .list_main .main .box .download .file {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .list_main .main .box .download .file a {
            display: inline-block;
            color: #3D3D3D;
            font-size: 1.1rem;
            font-weight: 400;
            margin: 5px 15px;
            position: relative;
            transition: 0.3s;
        }

            .list_main .main .box .download .file a:hover {
                color: #BD1933;
                text-decoration: none;
            }


                .list_main .main .box .download .file a:hover:before {
                    content: "";
                    width: 8px;
                    height: 8px;
                    background-color: #BD1933;
                    border-radius: 50px;
                    position: absolute;
                    top: calc( 50% - 1px);
                    left: -15px;
                    transform: translateY(-50%);
                }


@media (max-width: 575.98px) {
    .list.list_main .main .box .title {
        padding: 0 10px;
    }

    .list_main .main .box .link_box {
        padding-right: 10px;
    }

    .list_main .main .box hr {
        margin: 20px 10px;
        margin-bottom: 30px;
    }

    .list_main .main .box .download {
        margin: 10px;
    }
}

/* 網站導覽 sitemap */
.sitemap .main .box {
    max-width: 900px;
}

    .sitemap .main .box .title {
        justify-content: flex-start;
        padding: 0 20px;
    }

        .sitemap .main .box .title h1 {
            border-bottom: 1px solid #BD1933;
        }

    .sitemap .main .box .list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
    }

        .sitemap .main .box .list li {
            flex-basis: calc(100% / 2);
            padding: 0 15px;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
        }

            .sitemap .main .box .list li a {
                font-weight: 400;
                padding: 5px 20px 3px 20px;
                color: #3D3D3D;
                border: 1px solid #3D3D3D;
                border-radius: 50px 50px 10px 50px;
                margin-bottom: 15px;
                transition: 0.3s;
            }

                .sitemap .main .box .list li a:nth-child(1) {
                    background-color: #365ABD;
                    border: 1px solid #365ABD;
                    color: #fff;
                }

                .sitemap .main .box .list li a:hover {
                    text-decoration: none;
                    background-color: #BD1933;
                    color: #fff;
                    border-radius: 50px;
                    border: 1px solid #BD1933;
                }



@media (max-width: 991.98px) {
    .sitemap .main .box .list {
        margin: 0 -10px;
    }

        .sitemap .main .box .list li {
            padding: 0 10px;
        }
}

@media (max-width: 767.98px) {
    .sitemap .main .box .list li {
        flex-basis: 100%;
    }

        .sitemap .main .box .list li a {
            font-size: 0.9rem;
        }
}



/* room_main 房間介紹 */
.room_main .main .box {
    max-width: 1200px;
}

    /* 標題 */
    .room_main .main .box .title {
        justify-content: flex-start;
        padding: 0 40px;
    }

        .room_main .main .box .title h1 {
            border-bottom: 1px solid #BD1933;
        }

    /* 輪播 */
    .room_main .main .box .carousel_box {
        margin: 0 40px;
    }

    /* 大圖 */
    .room_main .main .box .slider_for {
        width: 60%;
        z-index: 5;
        padding: 10px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    }

        .room_main .main .box .slider_for .img_box {
            height: 360px;
            overflow: hidden;
            border-radius: 10px;
            /* margin: 10px; */

            position: relative;
        }

        .room_main .main .box .slider_for img {
            width: 100%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%) scale(1.1);
        }

        /* 下一張按鈕 */
        .room_main .main .box .slider_for .slick-next {
            right: -25px;
            bottom: -50px;
            top: initial;
            background-color: #BD1933;
            width: 60px;
            height: 60px;
            border-radius: 50px;
            border: 1px solid #fff;
            z-index: 55;
            transition: 0.3s;
        }

            .room_main .main .box .slider_for .slick-next:hover {
                transform: translateY(-50%);
            }

            .room_main .main .box .slider_for .slick-next::before {
                content: "";
                display: inline-block;
                width: 50px;
                height: 50px;
                background-image: url(../img/arrow_w.svg);
                background-repeat: no-repeat;
                background-position: center 18px;
                background-size: 35px;
            }


            .room_main .main .box .slider_for .slick-next:after {
                content: "";
                display: inline-block;
                width: 50px;
                height: 50px;
                border: 1px dashed #fff;
                border-radius: 50px;
                position: absolute;
                left: 4px;
                top: 50%;
                transform: translateY(-50%);
            }

            .room_main .main .box .slider_for .slick-next:hover:after {
                animation: aa 8s infinite linear;
            }

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* 小圖們 */
.room_main .main .box .slider_nav {
    width: 60%;
    transform: translateY(-40px) translateX(20%);
}

    .room_main .main .box .slider_nav .slick-list {
        padding: 0 !important;
    }

    .room_main .main .box .slider_nav .slick-slide {
        transform: translateX(-100%);
    }

    .room_main .main .box .slider_nav .img_box {
        height: 120px;
        margin: 20px 10px;
        overflow: hidden;
        border-radius: 10px;
        position: relative;
    }

    .room_main .main .box .slider_nav img {
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) scale(1.1);
    }

/* 文字內容 */
.room_main .main .box .text_box {
    position: absolute;
    width: 40%;
    padding-left: 20px;
    padding-right: 60px;
    top: 130px;
    left: calc( 60%);
}

    .room_main .main .box .text_box h2 {
        font-size: 1.4rem;
    }

    .room_main .main .box .text_box hr {
        border-color: #365ABD;
        border-width: 1px;
        width: calc( 100% + 40px );
        transform: translateX(-40px);
        margin: 15px 0px;
        margin-top: 5px;
    }

    .room_main .main .box .text_box .text {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .room_main .main .box .text_box .text li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

            .room_main .main .box .text_box .text li img {
                width: 30px;
            }

            .room_main .main .box .text_box .text li p {
                margin: 0;
                margin-left: 10px;
                font-weight: 400;
                font-size: 1.2rem;
            }

    /* 按鈕 */
    .room_main .main .box .text_box .btn_box {
        text-align: right;
        margin-top: 20px;
    }

        .room_main .main .box .text_box .btn_box button {
            background-color: #3D3D3D;
            border: none;
            border-radius: 50px 50px 10px 50px;
            color: #fff;
            padding: 7px 30px 3px 50px;
            position: relative;
            transition: 0.3s;
        }


            .room_main .main .box .text_box .btn_box button:before {
                content: "";
                display: inline-block;
                width: 25px;
                height: 25px;
                background-color: transparent;
                border: 1px solid #fff;
                border-radius: 50px;
                background-image: url(../img/arrow_w.svg);
                background-repeat: no-repeat;
                background-position: center 9px;
                background-size: 15px;
                position: absolute;
                left: 5px;
                top: 50%;
                transform: translateY(-50%);
                transition: 0.3s;
            }

            .room_main .main .box .text_box .btn_box button:after {
                content: "";
                display: inline-block;
                width: 20px;
                height: 20px;
                border: 1px dashed #fff;
                border-radius: 50px;
                position: absolute;
                left: 7px;
                top: 50%;
                transform: translateY(-50%);
                transition: 0.3s;
            }

            .room_main .main .box .text_box .btn_box button:hover {
                background-color: #365ABD;
                padding: 7px 50px 3px 30px;
                border-radius: 50px;
            }


                .room_main .main .box .text_box .btn_box button:hover:before {
                    left: calc( 100% - 30px);
                }

                .room_main .main .box .text_box .btn_box button:hover:after {
                    left: calc( 100% - 28px);
                    animation: aa 8s infinite linear;
                }

@keyframes aa {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }


    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}




@media (max-width: 1199.98px) {
    .room_main .main .box .title {
        padding: 0 10px;
    }

    .room_main .main .box .carousel_box {
        margin: 0 10px;
    }

    .room_main .main .box .slider_for .img_box {
        height: 310px;
    }

    .room_main .main .box .slider_nav {
        width: 65%;
        transform: translateY(-30px) translateX(10%);
    }

        .room_main .main .box .slider_nav .img_box {
            height: 100px;
        }

    .room_main .main .box .text_box .text li {
        margin-bottom: 10px;
    }

    .application_status .main .box .btn_box {
        margin-top: 10px;
    }
}


@media (max-width: 991.98px) {
    .room_main .main .box .slider_for {
        width: 100%;
        margin-bottom: 20px;
    }

        .room_main .main .box .slider_for .slick-list {
            border-radius: 10px;
        }

        .room_main .main .box .slider_for .img_box {
            height: 360px;
            margin: 0 5px;
        }

        .room_main .main .box .slider_for img {
            height: 100%;
            width: initial;
            position: initial;
            transform: scale(1);
        }

        .room_main .main .box .slider_for .slick-next {
            width: 45px;
            height: 45px;
            right: 5px;
            bottom: -35px;
        }

            .room_main .main .box .slider_for .slick-next::before {
                width: 45px;
                height: 45px;
                background-size: 25px;
                background-position: center 17px;
            }

            .room_main .main .box .slider_for .slick-next:after {
                width: 39px;
                height: 39px;
                left: 2px;
            }

    .room_main .main .box .slider_nav {
        display: none;
    }

    .room_main .main .box .text_box {
        position: initial;
        width: 100%;
        padding: 0 10px;
    }

        .room_main .main .box .text_box hr {
            width: 100%;
            transform: translateX(0);
        }

        .room_main .main .box .text_box .text li {
            margin-bottom: 15px;
            margin-left: 15px;
        }
}

@media (max-width: 575.98px) {
    .room_main .main .box .title {
        margin-bottom: 10px;
    }

    .room_main .main .box .text_box h2 {
        font-size: 1.2rem;
    }

    .room_main .main .box .slider_for .img_box {
        height: 250px;
    }

    .room_main .main .box .text_box .text li {
        margin-left: 0;
    }

        .room_main .main .box .text_box .text li p {
            font-size: 1rem;
        }
}



/* 抽中名單 list_table */
.list_table .main .box {
    max-width: 900px;
}

.list_table .main::after {
    content: none;
}

/* 標題 */
.list_table .main .box .title .img_box {
    padding-bottom: 5px;
}

.list_table .main .box .title h1 {
    border-bottom: 1px solid #BD1933;
    font-size: 1.6rem;
}

.list_table .main .box .title p {
    margin: 0;
    margin-left: 10px;
    margin-top: 5px;
    font-size: 1.4rem;
    font-weight: 500;
}

/* 表格 */
.list_table .main .box table {
    margin: 30px auto;
    width: 80%;
}

.list_table .main .box tr:nth-child(odd) {
    background-color: #F5F5F5;
}

.list_table .main .box tr th {
    background-color: #365ABD;
    color: #fff;
    padding: 10px;
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    border-right: 1px solid #ccc;
    width: calc( 100% / 3);
}

.list_table .main .box tr td {
    padding: 20px 10px;
    border-right: 1px solid #ccc;
}

    .list_table .main .box tr th:nth-last-child(1), .list_table .main .box tr td:nth-last-child(1) {
        border-right: none;
    }



@media (max-width: 767.98px) {
    .list_table .main .box tr th {
        display: none;
    }

    .list_table .main .box tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        border: 1px solid #365ABD;
        border-radius: 5px;
        overflow: hidden;
    }

        .list_table .main .box tr:nth-child(odd) {
            background-color: transparent;
        }

        .list_table .main .box tr:nth-child(1) {
            border: none;
        }

        .list_table .main .box tr td {
            border-right: none;
            position: relative;
            padding: 15px;
            padding-left: 160px;
            border-bottom: 1px solid #c0d0ff;
        }

            .list_table .main .box tr td:nth-last-child(1) {
                border-bottom: none;
            }

            .list_table .main .box tr td:before {
                content: attr(data-th)"";
                font-size: 1.1rem;
                font-weight: 500;
                background-color: #365ABD;
                color: #fff;
                margin-right: 10px;
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 150px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 20px;
            }
}

@media (max-width: 575.98px) {
    .list_table .main .box {
        padding: 20px 10px;
    }

        .list_table .main .box tr td {
            padding-left: 100px;
        }

            .list_table .main .box tr td:before {
                width: 90px;
                font-size: 1rem;
                text-align: center;
            }
}





/* 20231221 新增　↓ */
.form_form h2 {
    font-size: 1.3rem;
    background-color: #3D3D3D;
    color: #fff;
    border-radius: 50px;
    padding: 2px 20px;
    padding-bottom: 0px;
}

.form_form .main .input_box {
    padding: 0;
}

.form_form .main .radio_box .radio {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 15px;
}

    .form_form .main .radio_box .radio .form-check {
        margin: 2px 0;
    }

.form_form .form-group .file_box {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
}

    .form_form .form-group .file_box input {
        width: calc( 100% + 81px);
        padding: 4px 0;
        padding-bottom: 1px;
        transform: translateX(-81px);
        box-shadow: inset 2px 2px 3px rgba(228, 228, 228, 0.338);
        cursor: pointer;
    }

    .form_form .form-group .file_box:hover .aa {
        background-color: #3D3D3D;
    }

    .form_form .form-group .file_box .aa {
        position: absolute;
        bottom: 0px;
        right: 0;
        background-color: #365ABD;
        color: #fff;
        padding: 6px 20px;
        font-size: 1rem;
        pointer-events: none;
        transition: 0.3s;
    }

.form_form .main .form-group .file_box + p {
    font-size: 0.9rem;
    color: #9d9d9d;
    padding: 5px;
}

.form_form .main .form-group textarea {
    min-height: 150px;
}

/* 20231221 新增 ↑　*/














